To display the prices backwards on the order forms, you need to edit the main model file.
Open this file:
/app/models/packages.php
Find:
order(array('period' => "ASC", 'term' => "ASC"))->fetchAll();
Replace with:
order(array('period' => "DESC", 'term' => "DESC"))->fetchAll();